home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 December / CHIP Aralık 1996.iso / prog / backpack / demodata / misc / start.dxr / 00094_FixCross.ls < prev    next >
Encoding:
Text File  |  1995-08-30  |  341 b   |  15 lines

  1. on mouseDown
  2.   global SEX
  3.   if the clickOn = 21 then
  4.     set the castNum of sprite 25 to the number of cast "Male_Cross"
  5.     set SEX to 1
  6.   else
  7.     if the clickOn = 22 then
  8.       set the castNum of sprite 25 to the number of cast "Female_Cross"
  9.       set SEX to 0
  10.     end if
  11.   end if
  12.   set the visible of sprite 25 to 1
  13.   updateStage()
  14. end
  15.